home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Nov / di9811gd / Example1 / Unit1.dfm / Unit1.txt
Text File  |  1997-11-02  |  1KB  |  73 lines

  1. object Form1: TForm1
  2.   Left = 208
  3.   Top = 133
  4.   Width = 258
  5.   Height = 153
  6.   Caption = 'Example 1'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 8
  19.     Top = 52
  20.     Width = 24
  21.     Height = 13
  22.     Caption = 'Text:'
  23.   end
  24.   object btnLoad: TButton
  25.     Left = 172
  26.     Top = 4
  27.     Width = 75
  28.     Height = 25
  29.     Caption = '&Load library'
  30.     TabOrder = 0
  31.     OnClick = btnLoadClick
  32.   end
  33.   object btnUnload: TButton
  34.     Left = 172
  35.     Top = 32
  36.     Width = 75
  37.     Height = 25
  38.     Caption = '&Unload library'
  39.     TabOrder = 1
  40.     OnClick = btnUnloadClick
  41.   end
  42.   object Edit1: TEdit
  43.     Left = 40
  44.     Top = 48
  45.     Width = 121
  46.     Height = 21
  47.     Enabled = False
  48.     TabOrder = 2
  49.     Text = 'hello world testing 3 2 1'
  50.     OnChange = Edit1Change
  51.   end
  52.   object btnGetFirstWord: TButton
  53.     Left = 172
  54.     Top = 68
  55.     Width = 75
  56.     Height = 25
  57.     Caption = 'Get &first word'
  58.     Enabled = False
  59.     TabOrder = 3
  60.     OnClick = btnGetFirstWordClick
  61.   end
  62.   object btnGetNextWord: TButton
  63.     Left = 172
  64.     Top = 96
  65.     Width = 75
  66.     Height = 25
  67.     Caption = 'Get &next word'
  68.     Enabled = False
  69.     TabOrder = 4
  70.     OnClick = btnGetNextWordClick
  71.   end
  72. end
  73.